home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Games / Abalone 1.4.2 / src / StringLib.h < prev   
Encoding:
C/C++ Source or Header  |  1995-09-21  |  332 b   |  14 lines  |  [TEXT/KAHL]

  1. #ifndef STRINGLIB_H
  2. #define STRINGLIB_H
  3.  
  4. #include <String.h>
  5.  
  6. void    pstrcat (char *d, char *s);
  7. void    pstrcpy (char *d, char *s);
  8. void    pstrncpy (char *d, char *s, short n);
  9. void    appendi2cstr (char *cstr, short i);
  10. short    appendi2pstr (char *pstr, short i);
  11. short    i2cstr (char *cstr, short i);
  12. void    i2pstr (char *pstr, short i);
  13.  
  14. #endif